<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;!doctype html&gt;
&lt;html&gt;
    &lt;head&gt;
        &lt;meta charset="utf-8"&gt;
        &lt;title&gt;è·³è½¬æç¤º&lt;/title&gt;
        &lt;style type="text/css"&gt;
            * {
                padding: 0;
                margin: 0;
            }
            body {
                background: #f9f9f9;
                font-family: 'å¾®è½¯é›…é»‘';
                color: #333;
                font-size: 16px;
            }
            .box {
                margin: 100px auto;
                width: 600px;
                background: #fff;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                border-radius: 5px;
                border: 1px solid #ccc;
                padding: 10px;
                box-shadow: inset 0 0 3px #eee;
                min-height:150px;
            }
            .system-message { padding: 12px 24px; min-height:200px; }
            .system-message h1 {
                font-size: 36px;
                line-height: 40px;
                margin-bottom: 12px;
                text-shadow: 0 0 5px #9FB1BF;
                border-bottom:1px solid #ddd;
                padding-bottom:10px;
            }
            .jump { padding: 12px 24px; font-size:12px; }
            .jump a { color: #333; font-size:12px; }
            .system-message .success, .system-message .error {
                line-height: 1.8em;
                font-size: 16px
            }
            .system-message .detail {
                font-size: 12px;
                line-height: 20px;
                margin-top: 12px;
                display: none;
            }
            footer{ text-align:center; padding:5px 12px; color:#333; font-size:12px;border-top:1px solid #ddd;}
        &lt;/style&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;div class="box"&gt;
            &lt;div class="system-message"&gt;
                                    &lt;h1&gt;æ“ä½œå¤±è´¥ï¼&lt;/h1&gt;
                    &lt;p class="error"&gt;å‚æ•°æœ‰è¯¯&lt;/p&gt;                &lt;p class="detail"&gt;&lt;/p&gt;                
            &lt;/div&gt;
            &lt;p class="jump"&gt;ç­‰å¾… &lt;b id="wait" style="color:#f00;"&gt;3&lt;/b&gt; ç§’åŽé¡µé¢å°†è‡ªåŠ¨ &lt;a id="href" href="/Index/index.html"&gt;è·³è½¬&lt;/a&gt; &lt;/p&gt;
            &lt;footer&gt;Powered by &lt;a href="http://www.hunuo.com/" target="_blank"&gt;www.hunuo.com&lt;/a&gt;&lt;/footer&gt;
        &lt;/div&gt;
        &lt;script type="text/javascript"&gt;
            (function(){
                var wait = document.getElementById('wait'),href = document.getElementById('href').href;
                var interval = setInterval(function(){
                    var time = --wait.innerHTML;
                    if(time &lt;= 0) {
                        location.href = href;
                        clearInterval(interval);
                    };
                }, 1000);
            })();
        &lt;/script&gt;
    &lt;/body&gt;
&lt;/html&gt;</pre></body></html>